LoggingInterface

public interface LoggingInterface

Utility class for LoggingInterface.

The application using the SDK must implement this interface and assign an instance of this implementation to log property in the Configuration through the application's startup flow.

For example: LoggingInterface logger = new DefaultLogUtility(); Configuration.getInstance().setLogger(logger);

Since

2.0.0

See also

Functions

Link copied to clipboard
public abstract void log(Constants.LogLevel logLevel, String tag, String message)
public abstract void log(Constants.LogLevel logLevel, String tag, String message, Exception ex)
Main logging method defining the actual logging process.